runtime.mspan.next (field)
20 uses
runtime (current package)
arena.go#L319: a.fullList = s.next
arena.go#L320: s.next = nil
arena.go#L381: s.next = a.fullList
mheap.go#L412: next *mspan // next span in list, or nil if none
mheap.go#L1679: span.next = nil
mheap.go#L1716: list.first = span.next
mheap.go#L1718: span.prev.next = span.next
mheap.go#L1723: span.next.prev = span.prev
mheap.go#L1725: span.next = nil
mheap.go#L1735: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1736: println("runtime: failed mSpanList.insert", span, span.next, span.prev, span.list)
mheap.go#L1739: span.next = list.first
mheap.go#L1753: if span.next != nil || span.prev != nil || span.list != nil {
mheap.go#L1754: println("runtime: failed mSpanList.insertBack", span, span.next, span.prev, span.list)
mheap.go#L1760: list.last.next = span
mheap.go#L1777: for s := other.first; s != nil; s = s.next {
mheap.go#L1786: other.last.next = list.first
stack.go#L1228: next := s.next
stack.go#L1244: next := s.next
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |